@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

#app {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

a,
a:hover {
  text-decoration: none;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 25px;
  background-color: #FD841F;
}

.top-bar span {
  color: #fff;
}

.top-bar ul {
  list-style: none;
  display: flex;
}

.top-bar li {
  margin: 0px 5px;
}

.top-bar a {
  color: #fff;
}

.top-bar a:hover {
  color: #222;
}

nav {
  background-color: #FFFFFF;
  padding: 5px 20px;
  display: flex;
  align-items: center;
}

nav a {
  color: black;
}

nav a:hover {
  color: #FD841F;
}

.logo {
  flex: 1;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 20px;
}

.logo a:hover {
  color: #fff;
}

.logo img {
  width: 170px;
  margin-right: 10px;
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.menu li {
  padding: 15px 15px;
  font-size: 28px;
  font-weight: bolder;
}

.toggle {
  font-size: 30px;
  display: none;
}

@media screen and (max-width:600px) {
  nav {
    display: block;
    position: relative;
    padding: 15px 20px;
  }
}



#banner {
  position: relative;
  background-image: url(../Images/Game.jpeg);
  background-size: cover;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000000 8%, #0000000e);
}

.banner-content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}
/*
.banner-title {
  font-size: 2.3em;
  margin: 0;

  margin-top: -300px;

}

.banner-description {
  margin: 0;
  width: 700px;
  margin-bottom: 30px;
}
*/
.button {
  position: relative;
  border: 2px solid #000000;
  border-radius: 25px;
  background-color: #000000;
  padding: 8px 35px;
  margin-bottom: 220px;
  width: 240px;
  font-size: 20px;
  font-weight: 600;
  color: #FD841F;
  text-align: center;
  cursor: pointer;
  box-shadow: 5px 5px  #FD841F;
}

.button a {
  color: #ffffff;
}





.footer {
  background-color: black;
  color: white;
  padding: 30px 10px;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: space-around;
}

.footer-imgs {

  display: grid;
}



.footer-icon {
  display: flex;
}

.footer-title {
  font-size: 25px;

  font-weight: bold;

  padding-block: 20px;
}

.acol{

  color: #FFFFFF;
}
.acol:hover{
  color: #FD841F;
}

.footer span {
  font-weight: bolder;
  color: #FFFFFF;
}

.iletişim-footer {
  display: grid;
  justify-items: start;
  align-content: center;
}

/*@media screen and (max-width:900px) {

  #banner {
    position: relative;
    background-image: url(../Images/Game.jpeg);
    background-size: cover;
    background-position: bottom center;
    height: calc(100% - 450px);
    width: 100%;
    text-align: center;
  }
}*/
